/* projects section starts from here

.projects {
  background-color: #000000;
  color: #000;
  height: 10000px;
  padding-top: 110px;
}

.project_odd {
  display: flex;
  border: solid 1px grey;
  border-radius: 10px;
  margin: 10px 83px;
  padding: 15px 142px;
  align-items: center;

}

.project_even {
  display: flex;
  border: solid 1px grey;
  border-radius: 10px;
  margin: 10px 83px;
  padding: 15px 142px;
  align-items: center;
}

.frame {

  position: relative;
  height: 11.875em;
  width: 16.5em;
  box-shadow: 0px 1px 13px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: all 120ms;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  padding: 0.5em;
  padding-bottom: 3.4em;
}

.frame::after {
  content: "Click to Open";
  text-align: center;
  padding-top: 1.25em;
  padding-left: 1.25em;
  position: absolute;
  left: 0;
  bottom: -60px;
  background: #00AC7C;
  color: #fff;
  height: 2.5em;
  width: 90%;
  transition: all 80ms;
  font-weight: 600;
  opacity: 0;
}

.title {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.9em;
  position: absolute;
  left: 0.625em;
  bottom: 1.875em;
  font-weight: 400;
  color: #000;
  text-align: center;

}

.frame:hover::after {
  bottom: 0;
  opacity: 1;
}

.frame:active {
  transform: scale(0.98);
}



.text {
  max-width: 55px;
}

.image img {
  background: rgb(241, 241, 241);
  height: 135px;
  width: 240px;
  display: grid;
  place-items: center;
}

#project_descrip_text {
  margin: 5px 20px;
}

#lang_used {
  margin: 10px 83px;
  list-style: circle;
  display: flex;
  padding: 1px 5px;
  text-decoration: dotted;
}

#lang_used li {
  margin: 7px 12px;
  padding: 1px 5px;
}
*/
.sidebar {
  position: fixed;
  top: 75%;
  transform: translateY(-50%);
  left: 20px;
  z-index: 999;
  height: 100%;
  padding-top: 300px;

}

.projects {
  background-color: #000000;
  color: #000;
  /* height: 10000px; */
  padding-top: 110px;
}

.gallery {
  display: grid;
  background-color: #000000;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  grid-gap: 20px;
  padding: 20px;
  /* padding-top: 110px; */
}

.gallery-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 2px solid #333;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.gallery-item h3 {
  margin-bottom: 20px;
  color: #888888;
  font-weight: bold;
  font-size: 24px;
  text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.2);
}

.gallery-item img {
  max-width: 100%;
  height: auto;
  border: 2px solid #333;
  border-radius: 5px;
}